.blog {
    background-image: url("../../images/banner blog44.png");
    background-size: 100% 100%;
    min-height: 600px;
}

.blog_desc {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}

.date {
    color: #af9752;

}

.object-fit-contain {
    object-fit: contain;
}

.circ_play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--site-main-color);
    color: rgba(169, 143, 67, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circ_play::after {
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    left: 5px;
}

.circ_play i {
    transform: scaleX(-1);
    font-size: 22px;
}

.line {
    width: 100%;
    background-color: rgba(169, 143, 67, 1);
    height: 3px;
}

.text_blog {
    border-right: 3px solid rgba(169, 143, 67, 1);
    color: var(--site-main-color);
}

.head_blog {
    color: rgba(169, 143, 67, 1);
}

.text {
    font-weight: 500;
}
.share_icon .iconblog{
    font-size: 18px;
}
.iconblog {
    color: rgba(169, 143, 67, 1);

}

.circ_years {
    background-color: rgba(169, 143, 67, 1);
    color: #fff;
    position: absolute;
    font-size: 34px;
    width: 52%;
    text-align: center;
    left: -13%;
    top: 50%;
}

.rectangle {
    left: 10px;
    background-color: rgba(169, 143, 67, 1);
    position: absolute;
    border-radius: 20px;
    width: 18%;
    height: 34px;
    top: 38%;
}

.small_rectangle {
    left: 13px;
    border: 2px solid rgb(255, 255, 255);
    position: absolute;
    border-radius: 18px;
    width: 17%;
    height: 29px;
    top: 38.4%;
    /* z-index: 6; */
}

.circles {
    position: absolute;
    top: 28%;
    right: 14%;

}

.circ {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(169, 143, 67, 1);
}

.head_single {
    background: #efeff8;

}

.head_single a {
    color: #af9752;

}

.div-book-now {
    width: 80%;
    margin: auto;
}

.book-now {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--site-main-color);
    /* box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2); */
    overflow: hidden;
    cursor: pointer;
    border: none;
    /* margin: auto; */
}

.book-now:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--active-text);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.book-now:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.book-now span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    color: #fff;
    z-index: 8;
    transition: all 0.3s ease-in-out;
}

.video-play {
    object-fit: contain;
    height: 250px !important;
    aspect-ratio: 1 / 1;


}

.book-now:hover span {
    color: var(--site-main-color);
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}